home *** CD-ROM | disk | FTP | other *** search
- unit TermApp2U;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, ExtCtrls;
-
- type
- TShutAppForm = class(TForm)
- Button1: TButton;
- Button2: TButton;
- Button3: TButton;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Image1: TImage;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- ShutAppForm: TShutAppForm;
-
- implementation
-
- {$R *.DFM}
-
- procedure TShutAppForm.FormCreate(Sender: TObject);
- begin
- Image1.Picture.Icon.Handle := LoadIcon(0, IDI_EXCLAMATION);
- end;
-
- end.
-